home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / userbox / publicdomain / runbar / install next >
Text File  |  1996-08-08  |  2KB  |  86 lines

  1. ;;;;
  2. ;;;;
  3. ;;;; Install_RB - RunBar installation script for Installer
  4. ;;;;
  5. ;;;; Copyright © 1996 Sergej Kravchenko
  6. ;;;;                  All Right reserved.
  7. ;;;;                  email dlife@pub.osf.lt
  8. ;;;;
  9. ;;;;     Installer and Installer project icon
  10. ;;;;     (c) Copyright 1991-93 Commodore-Amiga, Inc.  All Rights Reserved.
  11. ;;;;     Reproduced and distributed under license from Commodore.
  12. ;;;;
  13. ;;;;     INSTALLER SOFTWARE IS PROVIDED "AS-IS" AND SUBJECT TO CHANGE;
  14. ;;;;     NO WARRANTIES ARE MADE.  ALL USE IS AT YOUR OWN RISK.  NO LIABILITY
  15. ;;;;     OR RESPONSIBILITY IS ASSUMED.
  16. ;;;;
  17. (complete 0)
  18.  
  19.  
  20. (set #welcome           (cat "Welcome to the RunBar 1.1 installation\n\nThis program is shareware\nPlease register\n\n\n\n© 1996 Sergej Kravchenko\nemail: dlife@pub.osf.lt"))
  21. (set #dir-choice        (cat "Select the directory where copy guide." ))
  22. (set #dir-choic         (cat "Select the directory where Guide files will be copyed." ))
  23. (set #copy              (cat "Copying RunBar "))
  24. (set #copy-guide        (cat "Copying Guide"))
  25. (set #copy-key          (cat "Copying Library"))
  26. (set #msg  (cat "!!!!!!!!!ATTENTION!!!!!!!!!\n\nWhen program run, no window appears\non screen.To activate window\nmove mouse pointer to bottom of\nworkbench screen or\npress HotKey (default F1)."))
  27. ;=============================================================================
  28. (message #welcome)
  29. (welcome)
  30.  
  31.  
  32. ;========================================================================
  33. ;
  34. ; Select the RunBar directory
  35. ;
  36. (complete 0)
  37.  
  38. (complete 10)
  39. (copyfiles
  40.    (prompt #copy)
  41.    (source "RunBar")
  42.    (help   @copyfiles-help)
  43.    (infos)
  44.    (dest "SYS:WBStartup")
  45. )
  46.  
  47. (complete 20)
  48. (set NTdir
  49.    ( askdir
  50.       ( prompt #dir-choic )
  51.       (help "")
  52.       (default "s:")
  53.       (newpath)
  54.    )
  55. )
  56. (complete 30)
  57. (copyfiles
  58.    (prompt #copy-guide)
  59.    (source "RunBar.guide")
  60.    (help   @copyfiles-help)
  61.    (infos)
  62.    (dest NTdir)
  63. )
  64. (complete 40)
  65. (copylib
  66.    (prompt "Updating wbstart.library")
  67.    (help "This action will install wbstart.library on your HD.")
  68.    (source "Libs/wbstart.library")
  69.    (dest "Libs:")
  70.    (confirm)
  71. )
  72.  
  73. (complete 60)
  74. (copylib
  75.    (prompt #copy-key)
  76.    (source "L/WBStart-Handler")
  77.    (help   @copyfiles-help)
  78.    (dest "L:")
  79.    (confirm)
  80. )
  81. (message #msg) 
  82. (complete 100)
  83.  
  84. (exit)
  85.  
  86.